1   /*
2    * Copyright (c) 1996, 2005, Oracle and/or its affiliates. All rights reserved.
3    * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4    *
5    * This code is free software; you can redistribute it and/or modify it
6    * under the terms of the GNU General Public License version 2 only, as
7    * published by the Free Software Foundation.  Oracle designates this
8    * particular file as subject to the "Classpath" exception as provided
9    * by Oracle in the LICENSE file that accompanied this code.
10   *
11   * This code is distributed in the hope that it will be useful, but WITHOUT
12   * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13   * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14   * version 2 for more details (a copy is included in the LICENSE file that
15   * accompanied this code).
16   *
17   * You should have received a copy of the GNU General Public License version
18   * 2 along with this work; if not, write to the Free Software Foundation,
19   * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20   *
21   * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22   * or visit www.oracle.com if you need additional information or have any
23   * questions.
24   */
25  
26  /*
27   * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
28   * (C) Copyright IBM Corp. 1996 - 1999 - All Rights Reserved
29   *
30   * The original version of this source code and documentation
31   * is copyrighted and owned by Taligent, Inc., a wholly-owned
32   * subsidiary of IBM. These materials are provided under terms
33   * of a License Agreement between Taligent and Sun. This technology
34   * is protected by multiple US and International patents.
35   *
36   * This notice and attribution to Taligent may not be removed.
37   * Taligent is a registered trademark of Taligent, Inc.
38   *
39   */
40  
41  package sun.text.resources;
42  
43  import java.util.ListResourceBundle;
44  
45  public class FormatData_ja extends ListResourceBundle {
46      /**
47       * Overrides ListResourceBundle
48       */
49      protected final Object[][] getContents() {
50          return new Object[][] {
51              { "MonthNames",
52                  new String[] {
53                      "1\u6708", // january
54                      "2\u6708", // february
55                      "3\u6708", // march
56                      "4\u6708", // april
57                      "5\u6708", // may
58                      "6\u6708", // june
59                      "7\u6708", // july
60                      "8\u6708", // august
61                      "9\u6708", // september
62                      "10\u6708", // october
63                      "11\u6708", // november
64                      "12\u6708", // december
65                      ""          // month 13 if applicable
66                  }
67              },
68              { "MonthAbbreviations",
69                  new String[] {
70                      "1", // abb january
71                      "2", // abb february
72                      "3", // abb march
73                      "4", // abb april
74                      "5", // abb may
75                      "6", // abb june
76                      "7", // abb july
77                      "8", // abb august
78                      "9", // abb september
79                      "10", // abb october
80                      "11", // abb november
81                      "12", // abb december
82                      ""    // abb month 13 if applicable
83                  }
84              },
85              { "DayNames",
86                  new String[] {
87                      "\u65e5\u66dc\u65e5", // Sunday
88                      "\u6708\u66dc\u65e5", // Monday
89                      "\u706b\u66dc\u65e5", // Tuesday
90                      "\u6c34\u66dc\u65e5", // Wednesday
91                      "\u6728\u66dc\u65e5", // Thursday
92                      "\u91d1\u66dc\u65e5", // Friday
93                      "\u571f\u66dc\u65e5"  // Saturday
94                  }
95              },
96              { "DayAbbreviations",
97                  new String[] {
98                      "\u65e5", // abb Sunday
99                      "\u6708", // abb Monday
100                     "\u706b", // abb Tuesday
101                     "\u6c34", // abb Wednesday
102                     "\u6728", // abb Thursday
103                     "\u91d1", // abb Friday
104                     "\u571f"  // abb Saturday
105                 }
106             },
107             { "AmPmMarkers",
108                 new String[] {
109                     "\u5348\u524d", // am marker
110                     "\u5348\u5f8c" // pm marker
111                 }
112             },
113             { "Eras",
114                 new String[] { // era strings for GregorianCalendar
115                     "\u7d00\u5143\u524d",
116                     "\u897f\u66a6"
117                 }
118             },
119             { "sun.util.BuddhistCalendar.Eras",
120                 new String[] { // era strings for Thai Buddhist calendar
121                     "\u7d00\u5143\u524d", // Kigenzen
122                     "\u4ecf\u66a6",       // Butsureki
123                 }
124             },
125             { "java.util.JapaneseImperialCalendar.Eras",
126                 new String[] { // era strings for Japanese imperial calendar
127                     "\u897f\u66a6",     // Seireki (Gregorian)
128                     "\u660e\u6cbb",     // Meiji
129                     "\u5927\u6b63",     // Taisho
130                     "\u662d\u548c",     // Showa
131                     "\u5e73\u6210",     // Heisei
132                 }
133             },
134             { "java.util.JapaneseImperialCalendar.FirstYear",
135                 new String[] {  // first year name
136                     "\u5143",   // "Gan"-nen
137                 }
138             },
139             { "NumberElements",
140                 new String[] {
141                     ".",        // decimal separator
142                     ",",        // group (thousands) separator
143                     ";",        // list separator
144                     "%",        // percent sign
145                     "0",        // native 0 digit
146                     "#",        // pattern digit
147                     "-",        // minus sign
148                     "E",        // exponential
149                     "\u2030",   // per mille
150                     "\u221e",   // infinity
151                     "\ufffd"    // NaN
152                 }
153             },
154             { "DateTimePatterns",
155                 new String[] {
156                     "H'\u6642'mm'\u5206'ss'\u79d2' z", // full time pattern
157                     "H:mm:ss z",                       // long time pattern
158                     "H:mm:ss",                         // medium time pattern
159                     "H:mm",                            // short time pattern
160                     "yyyy'\u5e74'M'\u6708'd'\u65e5'",  // full date pattern
161                     "yyyy/MM/dd",                      // long date pattern
162                     "yyyy/MM/dd",                      // medium date pattern
163                     "yy/MM/dd",                        // short date pattern
164                     "{1} {0}"                          // date-time pattern
165                 }
166             },
167             { "java.util.JapaneseImperialCalendar.DateTimePatterns",
168                 new String[] {
169                     "H'\u6642'mm'\u5206'ss'\u79d2' z", // full time pattern
170                     "H:mm:ss z", // long time pattern
171                     "H:mm:ss",   // medium time pattern
172                     "H:mm",      // short time pattern
173                     "GGGGyyyy'\u5e74'M'\u6708'd'\u65e5'", // full date pattern
174                     "Gy.MM.dd",  // long date pattern
175                     "Gy.MM.dd",  // medium date pattern
176                     "Gy.MM.dd",  // short date pattern
177                     "{1} {0}"    // date-time pattern
178                 }
179             },
180             { "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
181         };
182     }
183 }